home *** CD-ROM | disk | FTP | other *** search
- Path: ix.netcom.com!news
- From: jlilley@ix.netcom.com (John Lilley)
- Newsgroups: comp.lang.c++
- Subject: Re: For Experts: How to load a DLL dynamically ?
- Date: 16 Mar 1996 17:19:59 GMT
- Organization: Netcom
- Message-ID: <4iet7v$jdc@dfw-ixnews2.ix.netcom.com>
- References: <4ibr0a$8f9@nms.telepost.no> <4ieqki$dqv@cloner3.netcom.com>
- NNTP-Posting-Host: den-co12-24.ix.netcom.com
- Mime-Version: 1.0
- Content-Type: Text/Plain; charset=US-ASCII
- X-NETCOM-Date: Sat Mar 16 11:19:59 AM CST 1996
- X-Newsreader: WinVN 0.99.7
-
- OOPS! Forgot something...
-
-
- This:
- >void DLLfoo::method1(/*args*/) { ... }
- >int DLLfoo::method2(/*args*/) { ... }
-
- Should be:
- EXPORT void DLLfoo::method1(/*args*/) { ... }
- EXPORT int DLLfoo::method2(/*args*/) { ... }
-
-
- john lilley
-
-